a11y: It's not a bug if there's no row at some point
authorBenjamin Otte <otte@redhat.com>
Thu, 10 Nov 2011 14:01:21 +0000 (15:01 +0100)
committerBenjamin Otte <otte@redhat.com>
Thu, 10 Nov 2011 16:10:04 +0000 (17:10 +0100)
In that case, there's just nothing there.

gtk/a11y/gtktreeviewaccessible.c

index a3f8ce57bc2e693c0e9a1a05af47745d0198c541..2793f9ba17af5740b0eb2e6eff92db6c6dd058aa 100644 (file)
@@ -835,10 +835,7 @@ gtk_tree_view_accessible_ref_accessible_at_point (AtkComponent *component,
 
       return gtk_tree_view_accessible_ref_child (ATK_OBJECT (component), index);
     }
-  else
-    {
-      g_warning ("gtk_tree_view_accessible_ref_accessible_at_point: gtk_tree_view_get_path_at_pos () failed\n");
-    }
+
   return NULL;
 }